/*=========================================================================================
	Initialize 
===========================================================================================*/
@font-face {
    font-family: 'bbtorsospro';
    src: url('../fonts/bbtorsospro-bold.ttf');
    font-weight: 600 700;
}
@font-face {
    font-family: 'bbtorsospro';
    src: url('../fonts/bbtorsospro-regular.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'bbtorsospro';
    src: url('../fonts/bbtorsospro-medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'OpenSans';
    src: url('../fonts/OpenSans-VariableFont_wdth,wght.ttf');
    font-weight: 100 900;
}
@font-face {
    font-family: 'Novecento-NarrowMedium';
    src: url('../fonts/Novecento-NarrowMedium.ttf ');
}
@font-face {
    font-family: 'Geometria';
    src: url('../fonts/Geometria-Bold.ttf');
    font-weight: 600 700;
}
@font-face {
    font-family: 'Geometria';
    src: url('../fonts/Geometria-Light.ttf ');
    font-weight: 200 300;
}
@font-face {
    font-family: 'Geometria';
    src: url('../fonts/Geometria.ttf');
    font-weight: 100 900;
}

:root {
    --accent-color: #003871;
    --global-color: #010101;
    --text-color: #c8d0e8;
    --white-color: #ffffff;
    --second-color: #f87800;
    --text-blue: #566b85;
    --sky-color: #2baee0;
    --deep-blue: #0b243d;
}
.bg-deep-bule{
	background-color: var(--deep-blue);
}
.p-14-28{
	padding: 14px 28px;
}
.text-blue{
	color: var(--text-blue);	
}
.brd-right{
	border-right: 1px solid #696969;
}
.stuva-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.gp-20{
	gap: 20px
}
.stuva-btn a{
	padding: 14px 24px;
    border: 1px solid #c9c9c991;
	color: var(--white-color);
	font-weight: bold;
	text-decoration: none;
}
h1.banner-headline, h2.banner-headline{
    font-family: 'bbtorsospro';
    font-weight: 900;
    font-size: 3.0rem;
    margin-bottom: 0px !important;
}
h2{
	font-weight: 900;
    font-size: 3pc;
    margin-bottom: 0;
}
p{
	font-size: 18px;
	font-family: 'Geometria';
}
.headline-open, h2.headline-open{
	font-family: 'bbtorsospro';
	font-size: 2rem;
	font-weight: 500;
}
h3.headline-open{
	font-size: 33px;
	font-weight: 900;
}
.text-white, .text-white a{
	color: var(--white-color) !important;
}
.text-second-color{
	color: var(--second-color) !important;	
}
.bg-accent{
	background-color: var(--accent-color) !important;
}
.accent-color{
	color: var(--accent-color);
}
.bg-second{
	background-color: var(--second-color) !important;
}
.bg-sky{
	background-color: var(--sky-color) !important;
}
.btn-arrows a::after {
	content: '';
	display: inline-block;
    width: 12px;
    height: 10px;
	margin-left: 10px;
	vertical-align: middle;
	flex-shrink: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='white' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.Warnung-btn a::after {
	content: '';
	display: inline-block;
    width: 12px;
    height: 10px;
	margin-left: 10px;
	vertical-align: middle;
	flex-shrink: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='%23d8000a' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='%23d8000a' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.pl-15{
	padding-left: 15px !important;
}
.text-end{
	text-align: end !important;
}
.text-justify{
	text-align: justify !important;
}
.padding-d-4{
	padding: 1.5rem !important;	
}

/*=========================================================================================
	Navigation & Header
===========================================================================================*/
.header-logo a figure{
	margin: 0; 
}
.mod_navigation{
    overflow: visible;
}
.mod_navigation .navbar-nav .nav-item{
    position: relative;
    list-style: none;
}
.mod_navigation .navbar-nav .nav-item .nav-link{
    color: var(--accent-color);
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    font-weight: bold;
}
.mod_navigation .navbar-nav > .nav-item.active > .nav-link{
	color: var(--second-color);;
}
.mod_navigation .navbar-nav > .nav-item.active > .nav-link::after{
    content: '';
    position: absolute;
    bottom: -8px;
    left: .8rem;
    right: .8rem;
    height: 5px;
    border-radius: 10px;
    background-color: var(--second-color);
}
.mod_navigation .navbar-nav .nav-item .dropdown{
    position: absolute;
    top: 38px;
    left: auto;
    right: 0;
    width: 250px;
    background: #ffffff;
    box-shadow: 0px 0px 6px 0px #0000006e;
    z-index: 2;
    display: none;
}
.mod_navigation .navbar-nav .nav-item:hover .dropdown{
    display: block;
}
.mod_navigation .navbar-nav .nav-item .dropdown .nav-link{
    padding-left: 1.4rem;
    padding-right: .5rem;
    font-size: 16px;
    position: relative;
    display: block;
    font-weight: bold;
}
.mod_navigation .navbar-nav .nav-item .dropdown .nav-link:hover{
    color: #ffffff;
    background: var(--second-color);
}
.mod_navigation .navbar-nav .dropdown .nav-item.active .nav-link{
    color: #ffffff;
    background: var(--second-color);
}
.header-link-other ul, .change-language-section nav ul{
	display: flex;
}
.footer-link-other ul{
	display: flex;
	justify-content: end;
}
.header-link-other ul li{
	padding: 0px 10px;
}
.footer-link-other ul li{
	padding: 0px 7px;
	font-family: 'Geometria';
}
.change-language-section nav ul li{
	padding: 0px 7px;
}
.change-language-section ul li a{
	color: var(--white-color);
}
.change-language-section ul li.active{
	color: var(--second-color);
	font-weight: bold;
}
.breadcrumb-navigation ul{
	list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 0px;
}
.breadcrumb-navigation ul li{
	display: flex;
    align-items: center;
    color: var(--accent-color);
    font-size: 16px;
}
.breadcrumb-navigation ul li a{ 
	color: var(--accent-color);
    text-decoration: none;
    display: flex;
}
.breadcrumb-navigation ul li a:hover {
	text-decoration: underline;
}
 
.breadcrumb-navigation ul li.active {
    color: #f87800;
}
 
  /* chevron separator between items */
.breadcrumb-navigation ul li:not(.last)::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #f87800;
	border-right: 2px solid #f87800;
	transform: rotate(45deg);
	margin: 0 14px;
	opacity: 0.85;
}
 
  /* --- home icon via inline SVG data-URI --- */
.breadcrumb-navigation ul li.first a::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 8px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 18'%3E%3Cpolyline points='1,9 10,1 19,9' fill='none' stroke='%23f87800' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'/%3E%3Cpath d='M4,8 V17 H16 V8' fill='none' stroke='%23f87800' stroke-width='2' stroke-linejoin='round'/%3E%3Crect x='8' y='11' width='4' height='6' fill='%23f87800'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
/*=========================================================================================
	Home page code
===========================================================================================*/
.start-line-headline, .glance-second-card .start-line-headline{
	display: flex;
    align-items: center;
    padding: 20px 0px;
    font-size: clamp(10px, 1.5vw, 16px);
    font-weight: 500;
    letter-spacing: 0.21em;
    color: var(--second-color);
    text-transform: uppercase;
    overflow: hidden;
    font-family: 'Novecento-NarrowMedium';
    margin-bottom: 0px;
}
.start-line-headline::before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 1px;
    background-color: var(--second-color);
    margin-right: 10px;
    flex-shrink: 0;
}
.glance-second-card .start-line-headline::before{
	content: '';
    display: inline-block;
    width: 34px;
    height: 2px;
    background-color: var(--white-color);
    margin-right: 10px;
    flex-shrink: 0;
}
.banner-text-multi p{
	font-weight: 100; 
    font-size: 16px;
    line-height: 1.6;
    color: var(--white-color);
    max-width: 500px;
    font-weight: 400;
}
.section-text p{
	font-weight: 100; 
    font-size: 16px;
    line-height: 1.6;
    color: #c8d0e8;
    font-weight: 400;	
}
.banner-text-multi p strong{
	font-weight: bolder !important;
    color: #ffffff;
}
.banner-image{
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner-image img{
	padding: 10px;
}
.event-box{
	padding: 15px 13px;
    border: 1px solid #9191919c;
}
.event-box pre{
	color: #8fcdec;
    margin-bottom: 8px;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.event-box p{
	color: #c8d0e8;
	font-size:16px;
	margin-bottom: 0px;
}
.event-box h4{
	font-size: 1.5rem;
    font-family: 'bbtorsospro';
    font-weight: 500;
    margin-bottom: 0px;
}
.banner-count-items{
	padding: 0px 25px;
}
.banner-count-items h2{
	font-family: 'bbtorsospro';
	font-weight: 900;
}
.banner-count-items h2 strong{
	color: var(--second-color);
}
.banner-count-items hr{
	border-color: #2baee0;
	position: relative;
}
.banner-count-items hr::after{
	content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    transform: translateY(-50%);
    background-color: var(--second-color);
}
.banner-count-items hr::before{
	content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    transform: translateY(-50%);
    right: 0;
    background-color: var(--second-color);
}
.infinity h2{
	font-family: 'Geometria';
}
.banner-count-items p{
	color: var(--text-color);
	font-size: 16px;
}
.construction-text{
	font-size: 22px;
	padding-top: 9px;
}
.construction-card-container{
	display: flex;
	flex-wrap: wrap;
}
.construction-card{
	border: 1px solid #9191919c;
	padding: 15px 25px;
	width: 33.333333%;
}
.construction-card h5{
	color: var(--second-color) !important;
}
.construction-card-container .construction-card h2{
	font-size: 25px;
	color: var(--accent-color);
	font-family: 'bbtorsospro';
    font-weight: 500;
}
.construction-card-container .construction-card p{
	font-size: 16px;
}
.construction-card-bg .construction-card-body h2{
	font-size: 25px;
}
.construction-card-bg h2{
	color: var(--white-color) !important;
}
.rhythm-card{
	background-color: var(--white-color);
    max-height: 350px;
    height: 100%;
    padding: 14px;
    border-top: 3px solid var(--accent-color);
} 
.rhythm-card h3{
	color: var(--accent-color);
    font-weight: 800;
    font-size: 20px;
    font-family: 'OpenSans';
}
.rhythm-card p{
	color: var(--text-blue);
	font-size: 16px;
}
.rhythm-card-second-color{
	border-top: 3px solid var(--second-color);
}
.rhythm-card h5{
	font-size: clamp(10px, 1.5vw, 16px);
    font-weight: 600;
    letter-spacing: 0.21em;
    color: var(--accent-color);
    text-transform: uppercase;
    font-family: 'Novecento-NarrowMedium';
    padding-bottom: 12px;
}
.rhythm-card-second-color h5{
	color: var(--second-color);
}
.rhythm-card h5::first-letter{
	font-size: 2pc;
    font-family: sans-serif;
    font-weight: bold;
}
.rhythm-card-second-color h5::first-letter{
	color: var(--accent-color);
}
.warring-box .row{
	margin-right: 0px;
	margin-left: 1px;
}
.infrastructure-list ul li{
	border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: #c6c6c654;
    padding: 14px 0px;
    font-weight: 600;
    font-size: 15px;
}
.infrastructure-list ul li strong{
	color: var(--second-color);
    padding-right: 17px;
}
.flex-box{
	display: flex;
	justify-content: center;
    align-items: center;
}
.warning-container{
	display: flex;
	gap: 20px;
	border-left: 10px solid #9c0008;
    padding: 12px 32px;
    align-items: center;
    flex-wrap: wrap;
}
.infrasturcture-box{
	padding: 12px 33px;
	border: 1px solid #78787866;
}
.infrasturcture-box h3{
	font-size: 21px;
    margin-bottom: 17px;
}
.infrasturcture-box p{
	font-size: 14px;
}
.btn-gap{
	gap: 9px;
	flex-wrap: wrap;
}
.light-btn a{
	font-weight: normal;
}
.impression-card{
	border: 1px solid #b4b4b4a1;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 390px;
}
.impression-image-part .impression-card figure{
	flex: 1;
    overflow: hidden;
}
.impression-image-part .impression-card figure img{
	width: 100%;
	height: 100%;
}
.impression-card h2{
	font-size: 25px;
    padding: 13px 19px;
}
.box-wrapper{
	padding: 27px 27px 15px;
}
.glance-second-card{
	padding: 67px 27px;
}
.box-wrapper .row{
	justify-content: space-around;
}
.first-bg-box {
    background-image: url(../images/infobox_icon_datum.png);
    width: calc(50% - 10px);
}
.second-bg-box{
	background-image: url(../images/infobox_icon_oeffnungszeiten.png);
	 width: calc(50% - 10px);
}
.third-bg-box{
	background-image: url(../images/infobox_icon_ort.png);
	 width: calc(100% - 10px);
	margin-top: 10px;
}
.glance-box{
	padding: 16px 18px 43px;
	background-repeat: no-repeat;
    background-position-x: 114%;
    background-position-y: 55px;
}
.glance-box p {
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.glance-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.glance-box ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 6px;
}
.glance-box ul li {
  color: #ffffff;
  font-size: 15px;
  white-space: nowrap;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
}

.glance-box ul li:nth-child(odd) {
  color: #d0eaf7;
  font-size: 15px;
}
.glance-box ul li:nth-child(even) {
  color: #ffffff;
  font-size: 15px;
  text-align: right;
}
.glance-second-card .row{
	background-color: var(--sky-color);
	padding: 18px;
}
.glance-2nd-box-body h2{
	font-size: 25px;
}
.glance-2nd-box-body p{
	color: #d0eaf7;
    font-size: 15px;
}
.glance-2nd-box-body ul{
	color: #d0eaf7;
    font-size: 15px;
    display:  flex;
    gap: 16px
}
.glance-2nd-box-body ul li{
	list-style: disc;
	padding-right: 12px;
}
.exhibitors-box ul{
	display: flex;
    flex-wrap: wrap;
    background-color: var(--white-color);
}
.exhibitors-box ul li{
	color: var(--accent-color);
	width: 25%;
	padding: 12px;
	border: 1px solid #d8d8d89c;
	font-weight: 600;
}
.footer-btns{
	display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.footer-logo figure{
	margin-bottom: 0px;
	text-align: end;
}
.footer-logo img{
	padding: 38px 0px;
    width: 67%;
}
.inf-text-size p{
	font-size: 16px;
}
.Warnung-btn a{
	background-color: var(--white-color);
    display: block;
    padding: 20px 18px;
    color: #d8000a;
    font-weight: bold;
    text-align: center;
}
.Warnung-icon{
	width: calc(10% - 2px);
}
.Warnung-icon figure{
	margin-bottom: 0px; 
}
.warung-text{
	width: calc(70% - 4px);
}
.warung-text h3{
	font-family: 'Geometria';
    font-weight: 600;
    font-size: 24px;
}
.Warnung-btn{
	width: calc(17% - 2px);
	text-align: end;
}
.non-commitment-box ul{
	display: flex;
    flex-wrap: wrap;
}
.inf-text-size p{
	max-width: max-content;
}
.non-commitment-box ul li{
	width: 25%;
    border: 1px solid #cccccc;
    text-align: center;
    color: var(--accent-color);
    padding: 20px 30px;
    font-weight: bold;
}
.media-partner-box ul{
	display: flex;
    flex-wrap: wrap;
}
.media-partner-box ul li{
	width: 20%;
    border: 1px solid #cccccc;
    text-align: center;
    color: #003871a1;
    padding: 20px 30px;
    font-weight: bold;
}
.media-partner-box ul li:last-child{
	color: var(--second-color);
}
.after-line-headline {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 12px;
    color: var(--text-blue);
    font-size: 18px;
    letter-spacing: 2px;
}

.after-line-headline::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background-color: #cccccc;
}
.exhibitors-box ul li::before{
	content: '';
	display: inline-block;
    width: 7px;
    height: 7px;
	margin: 0px 17px;
	background-color: var(--second-color);
}
.exhibitors-box ul li:last-child{
	background: var(--accent-color);
    color: #ffffff;
    text-align: center;
    letter-spacing: 3px;
}
.exhibitors-box ul li:last-child::before {
    display: none;
}
.exhibitors-box ul li:last-child::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 10px;
    margin-left: 10px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='white' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.construction-card-bg::before{
	content: '';
    display: inline-block;
    width: 12px;
    height: 10px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='white' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
.footer-text p{
	font-size: 16px;
    line-height: 1.6;
    color: #c8d0e8;
    max-width: 500px;
    font-weight: 400;
}
.footer-text p strong{
	color: white;
}
.footer-link-other ul li a{
	font-size: 14px;
	color: #c8d0e8 !important;
}
.footer-btns .stuva-btn a{
	width: 65%;
}
.footer-btns .stuva-btn-bg a{
	background-color: var(--second-color);
}
.footer-btns .stuva-btn a{
	padding: 18px 24px;
}

.bg-second.stuva-btn.btn-arrows a,
.stuva-btn-bg.stuva-btn a{
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
  z-index: 1;
}

.bg-second.stuva-btn.btn-arrows a::before,
.stuva-btn-bg.stuva-btn a::before{
  content: '';
  position: absolute;
  inset: 0;
  background: #003366;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.bg-second.stuva-btn.btn-arrows a:hover::before,
.stuva-btn-bg.stuva-btn a:hover::before{
  transform: scaleX(1);
}
.stuva-btn a{
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s;
  z-index: 1;
}

.stuva-btn a::before{
  content: '';
  position: absolute;
  inset: 0;
  background: var(--second-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.stuva-btn a:hover::before{
  transform: scaleX(1);
}

.Warnung-btn a{
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  transition: color 0.25s;
  z-index: 1;
  border: 1px solid var(--white-color);
}

.Warnung-btn a::before{
  content: '';
  position: absolute;
  inset: 0;
  background: #d8000a;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.Warnung-btn a:hover::before{
  transform: scaleX(1);
}
.Warnung-btn a:hover {
  color: #fff;
}
.Warnung-btn a:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='%23ffffff' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
}
.header-link-other ul li a:hover,
.footer-link-other ul li a:hover{
	text-decoration: none;
    font-weight: bold;
    transition: 0.5s;
    color: var(--second-color) !important;
}
.footer-btns .stuva-btn{
	justify-content: end;
}
.footer-headline{
	font-size: 2.3rem;
    font-weight: 800;
    font-family: OpenSans;
}
.footer-text{
	font-family: bbtorsospro;
    font-weight: 500;
}
.banner-images-color, .banner-images-color-low{
	position: relative;
	min-height: 70vh;
	display: flex;
    align-items: center;
}
.banner-images-color::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--accent-color) 50%, #003871 50%, transparent, transparent 100%);
}
.banner-images-color-low::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
	background: linear-gradient(to right, var(--accent-color) 30%, #003871 30%, transparent, transparent 100%);
}
.banner-images-color .container{
	z-index: 1;
	position: relative;
}
.trade-fair-container .row{
	align-items: center;
}
.trade-fair-container p{
	margin-bottom: 0px;
	font-size: 20px;
    font-family: 'Geometria';
}
.accordion-part .ui-accordion-header{
	background-color: #edf1f5;
    margin: 2px 0px;
    padding: 10px 15px;
    color: var(--accent-color);
}
.accordion-body{
	padding: 15px;
}
.toggler .ui-accordion-header-icon {
    background: none !important;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -8px;
}
.toggler .ui-accordion-header-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg); /* points down (v) by default */
    transition: transform 0.25s ease;
}
.toggler.ui-accordion-header-active .ui-accordion-header-icon::before,
.toggler[aria-expanded="true"] .ui-accordion-header-icon::before {
    transform: rotate(225deg);
}
.toggler {
    position: relative;
    cursor: pointer;
}
.profile-list .list-text, .profile-list .list-image{
	display: flex;
	align-items: center;
}
.profile-list .list-text p{
	font-size: 20px;
	color: var(--accent-color);
}
.profile-list .list-text p strong{
	color: var(--second-color);
}
.accodian-list ul li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0px 17px;
    background-color: var(--second-color);
}
#abfrage .exhibitor_search_container, #pressefaecher .exhibitor_search_container{
	background: var(--accent-color);
    padding: 12px 12px;
    background-image: url(../images/icons/infobox_icon_lupe.png);
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 9px;
    background-size: 48px 48px;
    border-radius: 6px;
}
#abfrage .exhibitor_search_container form, #pressefaecher .exhibitor_search_container form{
	margin-bottom: 0px;
}
#abfrage .exhibitor_search_container select, #pressefaecher .exhibitor_search_container select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23003871"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 30px;
	padding: 10px 40px 10px 12px !important; 
	border: 2px solid #0b3d91;
	border-radius: 8px;
	background-color: #eef2f6;
	color: #333;
	border-radius: 7px;
}
#abfrage .aussteller_liste_box{
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
#abfrage .aussteller_liste_box .aussteller_angaben{
	width: calc(33.33% - 17px) !important;
    margin-top: 20px;
    border: 1px solid #e2e2e2;
    box-shadow: 2px 1px 6px 0px #e2e2e2;
    border-radius: 10px;
}
#abfrage #pagination-container, #resultbox #pagination-container{
	display: none;
}
#abfrage .aussteller_angaben .anschrift, .aussteller_angaben .kontakt{
	width: 50%;
    min-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
}
#abfrage .aussteller_angaben .kontakt{
	display: flex;
    justify-content: end;
    align-items: center;
}
#abfrage .aussteller_angaben .kontakt a img, .aussteller_angaben .kontakt div img{
	width: 36px;
    margin-right: 5px;
    background: var(--accent-color);
    padding: 7px;
    cursor: pointer;
    border-radius: 5px;
}
#abfrage .exhibitor-image{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 150px;
}
#abfrage .exhibitor-image img{
	max-height: 100px;
    height: auto;
}
#abfrage .aussteller_titel, #resultbox .aussteller_titel{
	display: flex;
    justify-content: space-between;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 10px 15px;
}
#abfrage .aussteller_titel h6, #resultbox .aussteller_titel h6{
	font-weight: bold;
	margin-bottom: 0;
	font-size: 15px;
}
#abfrage .aussteller_angaben2{
	display: flex;
}
#abfrage .aussteller_angaben .anschrift, #abfrage .details-btn{
	font-size: 15px;
	padding: 10px 14px;
}
#abfrage .exhibitor-details .details-btn a{
	border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 10px 20px;
    color: var(--accent-color);
    font-weight: bold;
}
#abfrage .exhibitor-details .details-btn a:hover{
	text-decoration: none;
}
#abfrage .exhibitor-details .details-btn a::after{
	content: '';
    display: inline-block;
    width: 12px;
    height: 10px;
    margin-left: 10px;
    vertical-align: middle;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='%23f87800' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='%23f87800' stroke-width='2'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}
#abfrage #pagination-info, #resultbox #pagination-info{
	color: var(--accent-color);
    font-weight: bold;
    padding: 20px 12px;
    text-align: end !important;
}
#abfrage #pagination-info button, #resultbox #pagination-info button{
	width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50px;
}
#abfrage #pagination-info button:disabled,	#resultbox #pagination-info button:disabled{
	background-color: #cccccc;
}
.extra_info_block{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:99999;
	display:flex;
	align-items:center;
	justify-content:center;
	background: #00000017;
}
.extra_info_block .data-box{
	background: #fff;
    min-width: 50%;
    max-width:55%;
}
.extra_info_block .data-box #detailbox{
	overflow-y: scroll;
    max-height: 70vh;
    padding: 20px;
}
.extra_info_block .data-box .close-btn{
	background: var(--accent-color);
    padding: 10px 20px;
    display: flex;
    justify-content: end;
}
.extra_info_block .data-box .close-btn img{
	width:30px;
	cursor:pointer;
}
.extra_info_block .data-box .data-box-content{
	padding:20px;
}
.extra_info_block .data-box .data-box-content .extrainfo_content{
	display:block;
}

/*for phoen and email popup*/
.popup-tc-phone{
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00000017;
}
.popup-tc-phone{
	display:none;
}
.popup-tc-phone.active{
	display:flex;
}
.popup-tc-phone .popup-data{
	background: #fff;
    min-width: 33%;
    max-width: 90%;
}
.popup-tc-phone .popup-data .tc-close-btn{
	background: var(--accent-color);
    padding: 7px 5px;
    display: flex;
    justify-content: end;
}
.popup-tc-phone .popup-data .tc-close-btn img{
	background: transparent;
    width: 20px;
    padding: 0px;
    cursor:pointer;
}
.popup-tc-phone .popup-data .tc-content{
	padding: 15px 15px;
}
.extrainfo_head{
	color: var(--accent-color);
    font-weight: bold;
}
.icon-text-container{
	display: flex;
	gap: 20px;
	align-items: center;
	margin-bottom: 16px;
}
.concept-half p{
	font-size: 16px;
}
.icon-text-container .image-icon{
	width: calc(15% - 10px);
}
.icon-text-container .image-icon figure{
	margin-bottom: 0px;
}
.icon-text-container .image-icon figure img{
	width: 90%;
}
.icon-text-container .icon-text{
	width: calc(90% - 10px);
}
.icon-text-container .icon-text p{
	margin-bottom: 0px;
	font-size: 16px;
}
.concept-box-2nd .icon-text-container{
	padding-bottom: 18px;
}
.pie-chart-image img{
	width: 75%;
}

.list-with-text ul li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0px 17px;
    background-color: var(--second-color);
}
.warnung-text h3{
    font-family: 'bbtorsospro';
    font-size: 25px;
}
.visitor-welcome-container .glance-second-card{
	padding: 48px 27px;
}
.visitor-welcome-container .fast-bg-box{
	width: calc(100% - 10px);
	background-image: url(../images/infobox_icon_datum.png);
}
.visitor-welcome-container .glance-box p{
	color: #ffffff;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-weight: 100;
    letter-spacing: 0px;
}
.visitor-welcome-container h5{
	display: flex;
    align-items: center;
    padding: 20px 0px;
    font-size: clamp(10px, 1.5vw, 16px);
    font-weight: 500;
    letter-spacing: 0.21em;
    text-transform: uppercase;
    overflow: hidden;
    font-family: 'Novecento-NarrowMedium';
    margin-bottom: 0px;
}
.visitor-welcome-container h5::before{
	content: '';
    display: inline-block;
    width: 34px;
    height: 2px;
    background-color: var(--white-color);
    margin-right: 10px;
    flex-shrink: 0;
}
.visitor-welcome-container .box-wrapper .row{
	height: 425px;
}
.news-redirect-btn a{
	color: var(--accent-color);
	border: 1px solid var(--accent-color);
}
.news-redirect-btn .btn-arrows a:hover{
	color: #ffffff;
}
.news-redirect-btn .btn-arrows a:hover::after{
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='%23ffffff' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
}
.news-redirect-btn .btn-arrows a::after{
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 12'%3E%3Cline x1='0' y1='6' x2='19' y2='6' stroke='%23003871' stroke-width='2'/%3E%3Cpolyline points='14,1 20,6 14,11' fill='none' stroke='%23003871' stroke-width='2'/%3E%3C/svg%3E");
	width: 12px;
    height: 7px;
    background-repeat: no-repeat;
}
.news-redirect-btn .stuva-btn a::before {
	background: var(--accent-color);
}










#pressefaecher .aussteller_liste_box{
	display:flex;
	flex-wrap:wrap;
	margin-left:-20px;
	margin-right:-20px;
}

#pressefaecher .aussteller_liste_box .aussteller_angaben, .aussteller_liste_box .pressebox_entry{
	width:33.3333% !important;
	padding-bottom:0px;
}

@media (max-width: 1000px) {
   #pressefaecher .aussteller_liste_box .aussteller_angaben, .aussteller_liste_box .pressebox_entry{
		width:100% !important;
		padding-bottom:0px;
	}
}
@media (max-width: 576px) {
    #pressefaecher .aussteller_liste_box .aussteller_angaben, .aussteller_liste_box .pressebox_entry{
		width:100% !important;
		padding-bottom:0px;
	}
}
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-headline{
	width:96%;
	float:left;
}
#pressefaecher .aussteller_liste_box .aussteller_angaben .exhibitor-information, .aussteller_liste_box .pressebox_entry .news-information{
	margin:20px;
	padding:10px;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
	height:90%;
	border-radius:4px;
	position:relative;
	border: 2px solid var(--accent-color);;
}
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data{
	height:220px;
	width:100%;
	max-height:250px;
	overflow-y:scroll;
	padding-right:2px;
	margin-top:8px;
}
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data .news-container{
	border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 5px;
}
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data .news-container:first-child{
	border-top: 0px;
}
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data::-webkit-scrollbar{
    width: 4px;
} 
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data::-webkit-scrollbar-track{
    box-shadow: inset 0 0 5px rgba(204, 204, 204, 0); 
    border-radius: 10px;
} 
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data::-webkit-scrollbar-thumb{
    background: #cccccc;
    border-radius: 10px;
} 
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data::-webkit-scrollbar-thumb:hover{
    background-color: #6e6c6c; 
    cursor: pointer;
} 
#pressefaecher .aussteller_liste_box .pressebox_entry .news-information .news-data::-moz-scrollbar-thumb{
    border-radius: 10px;
} 

#pressefaecher .exhibitor-image{
	padding: 25px 0px 0px 0px;
    display: flex;
    justify-content: center;
    align-items:center;
    height:100px;
}
#pressefaecher .exhibitor-image img{
	max-height:100px;
	height:auto;
}
#pressefaecher .exhibitor-information .exhibitor-details{
	float:left;
}
#pressefaecher .exhibitor-information .exhibitor-details .details-btn a, .news-information .news-details-btn a{
	padding: 7px 15px;
    background: #009ee0;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}
#pressefaecher .exhibitor-information .exhibitor-details .details-btn, .news-information .news-details-btn{
	position:absolute;
	bottom:20px;
	
}
#pressefaecher .extra_info_block{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	z-index:99999;
	display:flex;
	align-items:center;
	justify-content:center;
	background: #00000017;
}
#pressefaecher .extra_info_block .data-box{
	background: #fff;
    min-width: 50%;
    max-width:55%;
}
#pressefaecher .extra_info_block .data-box #detailbox{
	overflow-y: scroll;
    max-height: 70vh;
    padding: 20px;
}
#pressefaecher .extra_info_block .data-box .close-btn{
	background: var(--accent-color);
    padding: 10px 20px;
    display: flex;
    justify-content: end;
}
#pressefaecher .extra_info_block .data-box .close-btn img{
	width:30px;
	cursor:pointer;
}
#pressefaecher .extra_info_block .data-box .data-box-content{
	padding:20px;
}
#pressefaecher .extra_info_block .data-box .data-box-content .extrainfo_content{
	display:block;
}
.youtube-video-part .video_container{
	height: 100%;
}
.youtube-video-part .video_container iframe{
	width: 100%;
	height: 100%;
}